home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // CtlDemo2.h
- //
- //***********************************************************************
-
- class CNumEdit : public CEdit
- {
- protected:
- afx_msg void OnChar (UINT, UINT, UINT);
- DECLARE_MESSAGE_MAP ()
- };
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- };
-
- class CMainWindow : public CFrameWnd
- {
- private:
- int m_cxChar;
- int m_cyChar;
- CFont m_font;
-
- CStatic m_ctlLabel1;
- CStatic m_ctlLabel2;
- CEdit m_ctlStdEdit;
- CNumEdit m_ctlNumEdit;
-
- public:
- CMainWindow ();
-
- virtual BOOL PreTranslateMessage (MSG*);
-
- protected:
- afx_msg int OnCreate (LPCREATESTRUCT);
- DECLARE_MESSAGE_MAP ()
- };
-